home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 46
/
Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso
/
-in_the_mag-
/
reader_requests
/
scilab
/
man
/
man-part1
/
cat3
/
strcat.3
< prev
next >
Wrap
Text File
|
1999-09-16
|
557b
|
67 lines
strcat(3) Scilab Function strcat(3)
NAME
strcat - catenate character strings
CALLING SEQUENCE
[txt]=strcat(vstr [,strp])
PARAMETERS
txt,strp : strings
vstr : vector of strings
DESCRIPTION
catenates character strings : txt=strs(1)+...+strs(n)
txt=strcat(strs,opt) returns txt=strs(1)+opt+...+opt+strs(n)
EXAMPLE
strcat(string(1:10),',')
The plus symbol does the same: "a"+"b" is the same as strcat("a","b")
SEE ALSO
string, strings